(Flogb): Fix use of IN_FLOAT.
authorRichard M. Stallman <rms@gnu.org>
Thu, 11 Mar 1993 07:22:49 +0000 (07:22 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 11 Mar 1993 07:22:49 +0000 (07:22 +0000)
src/floatfns.c

index 5ae4379c1be40f31c434e53140688ad521ebc546..fb6030f69e33d798fc068510fe3bc0ef1f613c71 100644 (file)
@@ -626,7 +626,7 @@ This is the same as the exponent of a float.")
   Lisp_Object val;
   double f = extract_float (num);
 
-  IN_FLOAT (val = logb (f), num);
+  IN_FLOAT (val = logb (f), "logb", num);
   XSET (val, Lisp_Int, val);
   return val;
 #endif